commit | 3fbaa6f30d7cbfcc7b2b29ac3e29e013247f01da | [log] [tgz] |
---|---|---|
author | Andy Wingo <wingo@igalia.com> | Mon Jul 01 11:43:34 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Jul 02 07:50:45 2024 |
tree | 865064a6a53096b00643865f99faa757ee4cf9f3 | |
parent | 430a2eb05f2b795a552683d582a43daf1c24d8da [diff] |
[isolate-groups] Attach CodeRange to IsolateGroup, not process For multi-cage configurations, we should arrange for isolates within a cage to share a CodeRange, otherwise we will run out of address space trying to allocate a code range near the cage. Bug: 42204573 Change-Id: Ic06af34a84997a2696ec5622a7f55f4a5319c572 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5666698 Reviewed-by: Igor Sheludko <ishell@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Andy Wingo <wingo@igalia.com> Cr-Commit-Position: refs/heads/main@{#94759}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*
Please follow the instructions mentioned at v8.dev/docs/contribute.